home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / AutoBin Source / AutoBin.make < prev    next >
Text File  |  1991-11-24  |  3KB  |  77 lines

  1. ##*****************************************************************************
  2. ##
  3. ##  Project Name:    DropShell
  4. ##     File Name:    DropShell.make
  5. ##
  6. ##   Description:    Makefile for DropShell
  7. ##                        This makefile was created with & must be built by
  8. ##                        MPW's Build Menu.  Simply use the Build… option,
  9. ##                        specifying DropShell as the thing to build.
  10. ##                        You can also use the BuildProgram command.
  11. ##
  12. ##*****************************************************************************
  13. ##                       A U T H O R   I D E N T I T Y
  14. ##*****************************************************************************
  15. ##
  16. ##    Initials    Name
  17. ##    --------    -----------------------------------------------
  18. ##    LDR            Leonard Rosenthol
  19. ##
  20. ##*****************************************************************************
  21. ##                      R E V I S I O N   H I S T O R Y
  22. ##*****************************************************************************
  23. ##
  24. ##      Date        Time    Author    Description
  25. ##    --------    -----    ------    ---------------------------------------------
  26. ##    11/24/91            LDR        Cleaned it up a bit using some more vars
  27. ##                                Added the DSUtils stuff
  28. ##    10/28/91            LDR        Modified for the C version of DropShell
  29. ##    10/28/91            LDR        Officially renamed DropShell (from QuickShell)
  30. ##                                And added some comments
  31. ##    04/08/91    23:57    LDR        Original Version
  32. ##
  33. ##*****************************************************************************
  34.  
  35. #   File:       DropShell.make
  36. #   Target:     DropShell
  37. #   Sources:    DSGlobals.h
  38. #               DSAppleEvents.h
  39. #                DropShell.h
  40. #               DSAppleEvents.c
  41. #               DropShell.c
  42. #               DropShell.r
  43. #               DSUserProcs.c
  44. #                DSUtils.c
  45.  
  46. ObjectDir = ":Objects:"
  47.  
  48. LIBS    = ∂
  49.         "{Libraries}"Runtime.o ∂
  50.         "{Libraries}"Interface.o ∂
  51.         "{CLibraries}"CSANELib.o ∂
  52.         "{CLibraries}"CInterface.o
  53.  
  54. OBJECTS = ∂
  55.         {ObjectDir}DSUtils.c.o ∂
  56.         {ObjectDir}DSUserProcs.c.o ∂
  57.         {ObjectDir}DSAppleEvents.c.o ∂
  58.         {ObjectDir}DropShell.c.o
  59.  
  60.  
  61. "{ObjectDir}"DSUtils.c.o ƒ DropShell.make DSUtils.c DSUtils.h DSGlobals.h
  62.      C  -o {ObjectDir} DSUtils.c
  63. "{ObjectDir}"DSUserProcs.c.o ƒ DropShell.make DSUserProcs.c DSUserProcs.h DSGlobals.h
  64.      C  -o {ObjectDir} DSUserProcs.c
  65. "{ObjectDir}"DSAppleEvents.c.o ƒ DropShell.make DSAppleEvents.c DSAppleEvents.h DSGlobals.h
  66.      C  -o {ObjectDir} DSAppleEvents.c
  67. "{ObjectDir}"DropShell.c.o ƒ DropShell.make DropShell.c DSAppleEvents.c DSAppleEvents.h DSGlobals.h
  68.      C  -o {ObjectDir} DropShell.c
  69.  
  70. DropShell ƒƒ DropShell.make {OBJECTS}
  71.     Link -w -t APPL -c '????' ∂
  72.         {OBJECTS} {LIBS} ∂
  73.         -o DropShell
  74.  
  75. DropShell ƒƒ DropShell.make DropShell.r
  76.     Rez DropShell.r -append -o DropShell
  77.